home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Snippets / Development Tools & Languages / DTSCPlusLibrary / Sources / TemplateTest.cp < prev    next >
Encoding:
Text File  |  1993-01-14  |  834 b   |  31 lines  |  [TEXT/MPS ]

  1. /* _________________________________________________________________________________________________________ //
  2.   Copyright © 1992 Apple Computer, Inc. All rights reserved.
  3.   Macintosh Developer Technical Support.C++ Macintosh Toolbox Framework.
  4.   Originator: Kent Sandvik
  5.   Date: Wednesday, June 10, 1992 22:37:30
  6.   Revision comments are at the end of this file.
  7.   ---
  8.   TFoo is an xxx class.
  9.   TemplateTest.cp contains the testing code for testing TFoo.
  10.   _________________________________________________________________________________________________________ */
  11.  
  12. // ••• Specify here the one and only C++ class file
  13. // Include files
  14. #ifndef _FOO_
  15. #include "Template.h"
  16. #endif
  17.  
  18. // ••• Specify here a short description of the tests below
  19.  
  20. main()
  21. {
  22.     cout << "Start TFoo testing…\n";
  23.  
  24.  
  25.     cout << "End TFoo testing!\n";
  26.  
  27.     return 0;
  28. }
  29.  
  30.  
  31.